From 558408cab99f7d422ab80ed6bf85c67bf13c5ef8 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Thu, 13 Sep 2018 17:38:08 +0100 Subject: [PATCH] xen: connect guest creation with CONFIG_HVM Signed-off-by: Wei Liu Acked-by: Jan Beulich --- xen/common/domain.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/xen/common/domain.c b/xen/common/domain.c index a043812687..6dfcea494a 100644 --- a/xen/common/domain.c +++ b/xen/common/domain.c @@ -315,7 +315,14 @@ struct domain *domain_create(domid_t domid, /* Sort out our idea of is_{pv,hvm}_domain(). */ if ( config && (config->flags & XEN_DOMCTL_CDF_hvm_guest) ) + { +#ifdef CONFIG_HVM d->guest_type = guest_type_hvm; +#else + err = -EINVAL; + goto fail; +#endif + } else d->guest_type = guest_type_pv; -- 2.30.2